aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/stats/totals-your-share.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/groups/[groupId]/stats/totals-your-share.tsx')
-rw-r--r--src/app/groups/[groupId]/stats/totals-your-share.tsx34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/stats/totals-your-share.tsx b/src/app/groups/[groupId]/stats/totals-your-share.tsx
new file mode 100644
index 0000000..3218d6f
--- /dev/null
+++ b/src/app/groups/[groupId]/stats/totals-your-share.tsx
@@ -0,0 +1,34 @@
+'use client'
+import { getGroup, getGroupExpenses } from '@/lib/api'
+import { getTotalActiveUserShare } from '@/lib/totals'
+import { formatCurrency } from '@/lib/utils'
+import { useEffect, useState } from 'react'
+
+type Props = {
+ group: NonNullable<Awaited<ReturnType<typeof getGroup>>>
+ expenses: NonNullable<Awaited<ReturnType<typeof getGroupExpenses>>>
+}
+
+export function TotalsYourShare({ group, expenses }: Props) {
+ const [activeUser, setActiveUser] = useState('')
+
+ useEffect(() => {
+ const activeUser = localStorage.getItem(`${group.id}-activeUser`)
+ if (activeUser) setActiveUser(activeUser)
+ }, [group, expenses])
+
+ const totalActiveUserShare =
+ activeUser === '' || activeUser === 'None'
+ ? 0
+ : getTotalActiveUserShare(activeUser, expenses)
+ const currency = group.currency
+
+ return (
+ <div>
+ <div className="text-muted-foreground">Your total share</div>
+ <div className="text-lg">
+ {formatCurrency(currency, totalActiveUserShare)}
+ </div>
+ </div>
+ )
+}